body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
}


a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1{
    font-family: "Poppins", sans-serif;
}

h2{
    font-family: "Poppins", sans-serif;
}

h3{
    font-family: "Poppins", sans-serif;
}

h4{
    font-family: "Poppins", sans-serif;
}

h5{
    font-family: "Poppins", sans-serif;
}

h6{
    font-family: "Poppins", sans-serif;
}

p{
    font-family: "Poppins", sans-serif;
}
/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

.default-btn{
    padding-top: 20px;
}

.default-btn a{
    background: linear-gradient(90deg, #5a189a, #e0aaff); 
    border-radius: 50px;
    padding: 7px 25px;
    color: #ffffff;
    border: none; 
    transition: 0.3s;
}


.default-btn a:hover {
    opacity: 0.9; 
    transform: translateY(-2px);
}

/* header start */

.navbar-custom {
      

    position: relative;

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    background: transparent;

    transition: top 0.3s, background-color 0.3s;

}

.navbar-brand img{
    width: 100px;
}

.nav-link, .navbar-brand, .dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

.offcanvas-end {
    background-color: #ffffff;
}

.sticky-scroll {
    background-color: #1d1d28;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.offcanvas-body{
   
    display: flex !important;
    justify-content:center !important;
}


.navbar-nav{
    display: flex;
    justify-content: end;
}
.navbar-nav a{
    color: #ffffff !important;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 500;

    transition: color 0.3s ease;
    position: relative;
   
    /* text-align: center !important; */
}


.navbar-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e0aaff;
  transition: width 0.3s ease;
}

.navbar-nav a:hover{
   /* color: #10002b !important; */
   color: #e0aaff !important;
}

.navbar-nav a:hover::after {
  width: 100%;
}



.navbar-nav .active {
    /* color: #10002b !important; */
    color: #e0aaff !important;
}




.navbar-toggler span{
    color: #ffffff !important;
}

.navbar-toggler:focus {
    outline: none; 
    box-shadow: none;
    
}


.header-right-section{
    display: flex;
    justify-content:end;
    /* justify-content: space-between; */
}


.header-btn{
    display: flex;
    justify-content: end;
}
.header-btn a{
    background-color: #5a189a;
    padding: 7px 17px 7px 17px;
    color: #000000;
    border-radius: 50px;
    text-align: end !important;
    font-size: 16px;
    font-weight: 500;
    
    
}

.header-btn i{
    background-color: #ffffff;
    color: #5a189a;
    padding: 7px;
    border-radius: 50px;
    rotate: 320deg;
}


.header-btn a:hover{
    background-color: #ffffff;
    border:  1px solid #5a189a;
    color: #5a189a;
}

.header-btn a:hover i{
    background-color: #5a189a;
    color: #ffffff;
  
}



.header-icons a{
    display: inline-flex;           
    align-items: center;           
    justify-content: center;        
    width: 30px;                   
    height: 30px;                  
    margin: 10px;
    padding: 0;                     
    border-radius: 50%;             
    border: 1px solid #ffffff;
    color: #ffffff;
    line-height: 0;             
   
}


.header-icons a:hover{
    background-color: #5a189a;
    color: #000000;
    border: none;
}

@media(max-width:992px){
    .offcanvas-body{
        display: flex !important;
        justify-content: left !important;
    }

    .header-btn{
        display: none;
    }

    .header-right-section{
        display: none;
    }

    .navbar-nav .active{
        background-color: transparent !important;
        
    }

    .navbar-nav a{
        color: #000000 !important;
    }

    .navbar-nav .active a{
        color: #000000 !important;
    }
}



/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */









/* floating btn */

/* WhatsApp button on left */
.floating-buttons-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.floating-buttons-left a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-buttons-left a:hover {
    transform: scale(1.1);
}

/* Call button on right */
.floating-buttons-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-buttons-right a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #5a189a;
    color: white;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-buttons-right a:hover {
    transform: scale(1.1);
}

/* floating btn */



/* banner */

/* .banner-bg{
    background-image: url(..//image/banner-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 640px;

    display: flex;
    align-items: center;

} */


/* .banner-bg {
    position: relative;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden; 
}

.banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    
    background: linear-gradient(135deg, #10002b, #9d4edd);
    opacity: 0.9; 
    z-index: 1;
}




.banner-bg > * {
    position: relative;
    z-index: 2;
}

.banner-row{
    display: flex;
    justify-content: center;

} */








/* .banner-content h2{
    background: linear-gradient(90deg, #5a189a, #e0aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

font-weight: 500;
font-size: 49px;
line-height: 60px;
letter-spacing: 0%;
text-align: center;

} */


/* .banner-text-h2 {
    font-weight: 700;
    font-size: 55px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0;

    background: linear-gradient(90deg, #5a189a, #e0aaff, #5a189a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




.banner-content p{
    color: #ededed;
font-weight: 400;
font-size: 20px;
line-height: 30px;
letter-spacing: 0%;
text-align: center;

}

.banner-btn{
    display: flex;
    justify-content: center;
    gap: 20px;

    padding-top: 20px;
}

.banner-btn-one a{
    background-color: #5a189a;
    color: #ffffff;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;

    
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

.banner-btn-two a{
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;

    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}


.banner-btn-two a:hover{
    background-color: #5a189a;
    color: #ffffff;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    border: none;
}

.banner-btn-one a:hover{
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

@media(max-width:432px){
    .banner-content h2 {
        font-size: 26px;
        line-height: 40px;
        text-align: center;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }

    .banner-btn{
        display: flex;
        justify-content: center;
    }

    .banner-bg {
        height: 535px;
        background-position: right center;
    }

    .banner-btn-one a{
        font-size: 15px;
    }

    .banner-btn-two a{
        font-size: 15px;
    }
} */


/* banner end */




/* footer start */


.footer-section {
    padding-bottom: 15px;
    background-color: #1d1d28;
}

.footer-bg {

    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

/* .footer-row{
    border-bottom: 1px solid #ffffff;
} */

.footer-hr hr{
    color: #ffffff;
    height: 3px !important;
}
 
.footer-logo img{
    width: 100px;
}

.footer-about p{
    margin-top: 15px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #ffffff;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #e0aaff;
}




.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #5a189a;

    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #ffffff;

    font-weight: 300;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #e0aaff;
}

.copy-right {
    display: flex;
    
    justify-content: center;
    padding-top: 10px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;

}

.copy-right a {
    color: #ffffff;
}



.service-marquee {
  font-size: 18px;
  font-weight: 400;
  color: #f6f5f7;
  padding: 0px 0;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif !important;
}


@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
    }

    .footer-content{
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p{
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */

.about-section{
    padding: 100px 0px;
}

.about-titles-col{
    display: flex;
    align-items: center;
}

.about-titles h2{
    font-size: 48px;
    color: #000000;
    font-weight: 400;
}

.about-titles span{
    font-weight: 700;
}

.about-btn{
    padding-top: 10px;
}

.about-btn a{
    padding: 7px 26px 7px 26px;
    background-color: #5a189a;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.3s;
}

.about-btn a:hover{
    background: linear-gradient(90deg, #5a189a, #e0aaff);
    transform: translateY(-2px);
}

.about-content p{
    color: #030712;
    font-size: 17px;
    font-weight: 300;
    text-align: justify;
}


@media(max-width:992px){
    .about-content{
        padding-top: 30px;
    }
}


@media(max-width:432px){
    .about-section{
        padding-top: 27px;
    }

    .about-titles h2{
        font-size: 35px;
    }
}

/* about end */


/* about points slider */

.about-points-slider{
    background-color: #5a189a;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    color: #f6f5f7;
    padding: 10px 0;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif !important;
}

/* about points slider end*/


/* portfolio */

.portfolio-section{
    padding: 100px 0px;
    background-color: #1d1d28;
}

.portfolio-head-title h2{
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
}

.portfolio-head-title-btn{
    text-align: end;
}

.portfolio-row{
    margin-top: 20px;
}


.portfolio-slider .item img {
    width: 100%;
    height: 362px;
    object-fit: cover;
    border-radius: 20px !important;
}


@media(max-width:992px){
    .portfolio-head-title-btn{
        text-align: start;
    }


    .portfolio-slider .item img{
        height: 250px;
        object-fit: cover;
    }
    
}

@media(max-width:500px){
    .portfolio-slider .item img{
        height: 200px;
        object-fit: cover;
    }
}

@media(max-width:432px){
    .portfolio-section {
        padding: 50px 0px;
    }

    .portfolio-head-title h2{
        font-size: 30px;
    }

    .portfolio-head-title-btn{
        padding-bottom: 15px;
    }
}


@media(max-width:375px){
    .portfolio-slider .item img{
        height: 150px;
        object-fit: cover;
    }
}
/* portfolio end */



/* .pages-banner{
    background-image: url(..//image/banner-1.jpg);
}
 */


.pages-banner {
    position: relative;
    background-image: url(../image/banner-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 0px;
    
}

.pages-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #5a189a; */
    background-color: #000000;
    /* background-color: #10002b; */
    opacity: 0.7; 
    z-index: 1;
}


.pages-banner > * {
    position: relative;
    z-index: 2;
}

.pages-banner-content{
    text-align: center;
}
.pages-banner-content a{
    color: #ffffff;
    font-size: 18px;
}

.pages-banner-content .active{
    color: #e0aaff;
}

.pages-banner-content span{
    color: #ffffff;
    font-size: 18px;
}


@media(max-width:432px){

    .pages-banner {
        padding: 100px 0px;
    }
}

/* pages banner end */


/* cta start */

.cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cta-row{
    display: flex;
    justify-content: center;

    background: linear-gradient(45deg, #5a189a, #e0aaff);

    /* background-image: url(..//image/banner-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; */
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-content{
    text-align: center;
}
.cta-content h1{
    color: #ffffff;
   
font-weight: 700;
font-size: 41px;
line-height: 130%;
letter-spacing: 0%;
text-align: center;

}

.cta-content p{
    color: #ffffff;
   
font-weight: 400;
font-size: 17px;
line-height: 29px;
letter-spacing: 0%;
text-align: center;

}

.cta-btn a{
    padding: 7px 25px 7px 25px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
}

.cta-btn a:hover{
    background: linear-gradient(90deg, #5a189a, #e0aaff); 
    color: #ffffff;
}

/* .cta-content a{
    background-color: #13a2b2;
    color: #ffffff;
    padding: 7px 25px 7px 25px ;
    border-radius: 50px;
    border:  1px solid #ffffff;
}


.cta-content a:hover{
    background-color: #ffffff;
    color: #13a2b2;
    border: 1px solid #13a2b2;
} */

@media(max-width:432px){
    .cta-row{
        margin: 0px;
        background-position: right;
    }

    .cta-content h1{
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

/* cta end */


/* portfolio page */



.portfolio-page-section{
    padding: 30px 0px;
    background-color: #1d1d28;
}

.portfolio-pgae-image-section{
    padding-top: 10px !important;
}

.portfolio-page-head h2{
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
}

.portfolio-page-head span{
    color: #e0aaff;
}

.portfolio-page-head p{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    
}

.portfolio-name-title h6{
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    font-style: italic;
}

@media(max-width:432px){
    .portfolio-page-head h2{
        font-size: 24px;
    }

    .portfolio-page-head p{
        font-size: 14px;
    }

    .portfolio-name-title h6{
        font-size: 18px;
        text-align: center;
    }
}

/* portfolio page end */

/* contact page */

.contact-page-section{
    background-color: #1d1d28;
    padding: 50px 0px;
}


.address-card{
    border: 3px solid #464647;
    padding: 20px;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.address-icon{
    width: 45px;
    height: 45px;
    background-color: #464647;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-bottom: 15px;
}

.address-icon i{
    color: #ffffff;
}

.address-content a{
    color: #ffffff;
}


/* form */
.contact-form-section .form-label{
    color: #ffffff;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}


.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
  color: #ffffff;    
  opacity: 0.5;
  font-weight: 300 !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
}

.contact-form-section .form-control{
    /* background-color: #464647; */
    background: transparent;
    border: 3px solid #464647;
    color: #ffffff !important;
    
}



.contact-btn{
    background: linear-gradient(90deg, #5a189a, #e0aaff); 
    border-radius: 50px;
    padding: 7px 25px;
    color: #ffffff;
    border: none; 
    transition: 0.3s;
}


.contact-btn:hover {
    opacity: 0.9; 
    transform: translateY(-2px);
}

/* contact page end */


/* blog page */

.blog-section {
  background-color: #1a1a1a; 
  color: #fff;
}

.blog-head-title h2{
    font-size: 48px;
    font-weight: 400;
}

.blog-head-title span{
    color: #e0aaff;
}


.blog-card {
  background-color: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: #e0aaff;
}

.blog-content p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 15px;
}


.btn-gradient {
  background: linear-gradient(to right, #5a189a, #e0aaff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #e0aaff, #5a189a);
  color: #fff;
  
}

.home-blog-btn{
    padding: 5px 15px 5px 15px !important;
}


@media(max-width:432px){
    .blog-head-title h2{
        font-size: 30px;
    }

    .blog-head-title p{
        font-size: 14px;
    }
}

/* blog end */

/* counter  */

.counter-section {
  
}

.counter-box h2 {
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 10px;
  /* color: #5a189a; */

  color: transparent;
  -webkit-text-stroke: 2px #5a189a;
  text-stroke: 1px #5a189a;
}

.counter-box p {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
}

.counter-box {
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
}

/* counter end */


/* service page */

.service-card {
  background: #444242;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.service-content {
  padding: 40px 30px;
}

.service-content h5 {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 16px;
  /* color: #555; */
  color: #eeeeee;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-gradient {
  background: linear-gradient(90deg, #5a189a, #9d4edd);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #9d4edd, #5a189a);
}


@media (max-width: 991px) {
  .service-card {
    text-align: start;
  }
  
  .service-content {
    padding: 0px;
    padding-top: 15px;
  }
}


@media (max-width:432px) {
  .service-card{
    padding: 10px;
    margin: 0px !important;
  }

  .service-content h5{
    font-size: 20px;
  }

  .service-content p{
    font-size: 15px;
  }
}

/* service end */

/* blog detail */

.blog-detail-section{
    padding: 50px 0px;
}

.blog-detail-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-detail-content{
    padding-top: 15px;
}

.blog-detail-content h2{
    color: #000000;
}

.blog-detail-content p{
    color: #000000;
    font-size: 16px;
}


@media (max-width:432px) {
  .blog-detail-img img{
    height: auto;
  }
}

/* end */




/* testimonials start */

.testimonials-section{
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: #1d1d28;
}

.testimonials-top-left{
    text-align: center;
}

.testimonials-top-left h6 {
    color: #e0aaff;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    
    
}

.testimonials-top-left p{
    color: #ffffff;
}

.testimonials-top-left h1{
    color: #ffffff;
  
font-weight: 500;
font-size: 36px;
line-height: 100%;
letter-spacing: 0%;


}

.testimonials-top-left span{
    color: #e0aaff;
}


.testimonials-top-right{
    text-align: end;
}



.testimonial-item {
    margin-top: 50px !important;
    
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    border: 2px solid #303031;
    margin: 15px 5px 15px 5px;
    position: relative;
}

.testimonial-user{
    position: absolute;
    top: -10%;
}


.testimonial-item img {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.testimonial-name {
   
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.testimonial-text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #e4e4e4;
}

.stars {
    font-size: 20px;
    color: #ffe234;
}



@media(max-width:432px){
    .testimonials-top-left h6{
        font-size: 18px;
    }

    .testimonials-top-left h1 {
        font-size: 24px;
        text-align: center;
        padding-top: 10px;
    }

    .testimonials-top-right{
        text-align: center;
    }
}

/* testimonials end */


/* home service */

.home-service-section{
    background-color: #1d1d28;
    padding: 50px 0px;
}

.home-service-title-col{
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-service-title{
    
}

.home-service-title h2{
    color: #ffffff;
    font-size: 48px;
    font-weight: 400;
}

.home-service-title span{
    color: #e0aaff;
    font-weight: 700;
}

.home-service-content li{
    list-style: none;
    margin-top: 20px;
}


.home-service-content a{
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
}

.home-service-content a:hover{
    color: #e0aaff;
}


.home-service-section .row {
  position: relative;
}

.home-service-section .row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
}


@media (max-width: 991px) {
  .home-service-section .row::before {
    display: none;
  }

  .home-service-title-col{
    display: flex;
    justify-content: start;
  }

  .home-service-content ul{
    padding: 0px;
  }

  .home-service-title h2{
    font-size: 35px;
  }

  .home-service-content a{
    font-size: 20px;
  }

}


/* home service end */


/* home blog */

.home-blog-section{
    background-color: #1a1a1a;
    padding: 50px 0px;
}

.home-blog-title-col{
    display: flex;
    align-items: center;
}

.home-blog-title h2{
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
}

.home-blog-title span{
    color: #e0aaff;
    font-weight: 700;
}




@media(max-width:432px){
    .home-blog-title h2{
        font-size: 35px;
    }
}


/* blog end */


/* client start */

.client-section{
    padding: 50px 0px;
}

.client-head-title h2{
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.client-head-title span{
    color: #5a189a;
}


.client-logo-slider .item {
  text-align: center;
  padding: 15px;
}

.client-logo-slider img {
  max-width: 150px;
  height: auto;
}

@media(max-width:432px){
    .client-head-title h2{
        font-size: 35px;
    }
}

/* clients end */



/* mission and vision */


.vision-image img{
    border-radius: 20px;
    width: 100%;
}

.vision-content-card{
    background: linear-gradient(to right, #5a189a, #e0aaff );
    padding: 20px;
    border-radius: 20px;

    display: flex;
    align-items: center;
}

.vision-content h6{
    color: #ffffff;

font-weight: 500;
font-style: Medium;
font-size: 25px;

line-height: 100%;
letter-spacing: 0%;
text-align: left;

}

.vision-content h1{

font-weight: 500;
font-style: Medium;
font-size: 36px;

line-height: 100%;
letter-spacing: 0%;
color: #ffffff;
}

.vision-content p{
    color: #DFDFDF;
   
font-weight: 400;

font-size: 16px;

line-height: 28px;
letter-spacing: 0%;

}

.mision-row {
    padding-top: 50px;
}





@media(max-width:992px){
    .vision-content-card{
        margin-top: 35px;
    }

    .mission-image img{
        margin-top: 50px !important;
    }

    .vision-content h1{
        font-size: 24px;
    }

    .vision-content p{
        font-size: 15px;
    }

    
}



/* mission end */


/* new banner */




.marketing-banner {
   
    height: 720px;
    
    background-color: #0d0619;
    
    background-image: radial-gradient(circle at 75% 50%, #5e3077 0%, #0d0619 65%);
    overflow: hidden; 
    position: relative;

    display: flex;
    align-items: center;
    overflow: hidden; 
}





.btn-dark-custom {
    background-color: #0d0619;
    color: white;
    border-color: #3b284e;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s;
    font-size: 1.1rem;
}
.btn-dark-custom:hover {
    background-color: #1a0c2f;
    border-color: #5e3077;
    color: white;
}


.profile-icon {
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute; 
    z-index: 10;
    box-shadow: 0 0 15px rgba(175, 57, 255, 0.5); 
}

.graphic-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.circle-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(130, 95, 175, 0.5); 
 
    box-shadow: 0 0 20px rgba(100, 50, 150, 0.2);
}


.circle-lg {
    width: 450px;
    height: 450px;
}
.circle-md {
    width: 300px;
    height: 300px;
}
.circle-sm {
    width: 150px;
    height: 150px;
}


.stats-box {
    position: relative;
    z-index: 5;
}
.stats-box .text-secondary-light {
    color: #a0a0a0 !important;
}




.icon-pos-1 { 
    top: 10%; 
    right: 10%; 
}

.icon-pos-2 { 
    top: -29%;
} 

.icon-pos-3 { 
    bottom: 10%; 
    right: 25%; 
} 

.icon-pos-4 { 
    top: 30%; 
    left: 12%; 
} 



.floating-badge {
    position: absolute;
    bottom: 10%;
    left: 45%;
    background-color: #8a2be2; 
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    z-index: 20;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.graphic-container {
    animation: pulse 5s ease-in-out infinite;
}





.banner-text-h2{
    font-weight: 700;
    font-size: 55px;
    line-height: 60px;
    text-align: left;
    letter-spacing: 0;

    background: linear-gradient(90deg, #5a189a, #e0aaff, #5a189a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.banner-content p{
    color: #ededed;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: left;

}


.banner-btn{
    display: flex;
    justify-content: left;
    gap: 20px;

    padding-top: 20px;
}

.banner-btn-one a{
    background-color: #5a189a;
    color: #ffffff;
    padding: 7px 25px 7px 25px;
    border-radius: 50px;

    
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

.banner-btn-two a{
    padding: 7px 25px 7px 25px;
    border-radius: 50px;
    border: 1px solid #ffffff;
    color: #ffffff;

    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}


.banner-btn-two a:hover{
    background-color: #5a189a;
    color: #ffffff;
    
    
    border: none;
}

.banner-btn-one a:hover{
    
    
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}






@media (max-width: 992px) {
    .marketing-banner {
        height: auto;
        padding-top: 100px;
        padding-bottom: 200px;

        
    }

    .graphic-container{
        padding-top: 100px;
    }
    
    .circle{
        position: absolute;
        
    }

    .icon-pos-2{
        top: -21%;
    }

    .icon-pos-2{
        right: 31%;
    }


   

    .circle-lg {
        width: 250px !important;
        height: 250px !important;
    }

    .circle-md {
        width: 40vw; 
        height: 40vw;
    }

    .circle-sm {
        width: 20vw; 
        height: 20vw;
    }


    .profile-icon {
        width: 30px;
        height: 30px;
    }


    .banner-text-h2 {
        font-size:35px;
    }

    .banner-content p {
        font-size:15px; 
    }

    
}




@media(max-width:768px){

    .icon-pos-2 {
        top: 32%;
        right: 47%;
    }

    .icon-pos-1 {
        top: 24%;
        right: 29%;
    }

    .icon-pos-4 {
        top: 73%;
        left: 24%;
    }
}


@media(max-width:432px){

    .banner-text-h2 {
        font-size:28px;
        line-height: 33px;
        text-align: center;
    }

    .banner-content p {
        font-size:15px;
        text-align: center;
        line-height: 22px;
    }

    .banner-btn{
        justify-content: center;
    }

    .icon-pos-2{
        top: -4%;
        right: 46%;
    }

    .icon-pos-3{
        bottom: -42%;
        right: 45%;
    }

    .icon-pos-1{
        top: 73%;
        right: 24%;
    }

    .icon-pos-4 {
        top: 72%;
        left: 16%;
    }

    .banner-clients-text span{
        font-size: 20px;
    }

    .banner-clients-text small{
        font-size: 13px;
    }

    .marketing-banner {
        padding-top: 39px;
        padding-bottom: 138px;
    }

}